@charset "utf-8";

/*

Last Update 2009-11-20

サイトの基本要素に対するスタイルシートの指定です。
以下の箇所以外、変更は行わないでください。

・bodyの文字色
・リンク色

もしここで指定されている値で、上書きが必要なものに関しては、ここの内容を
変更せずに、各ページごとのスタイルシートで上書きしてください。

*/

/* font-color
--------------------------------------------------------------------*/

body {
	color: #535353;
	 background-color:#FFF;


}

/* heading
--------------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "宋体","新宋体",Arial,Helvetica,sans-serif;
	font-size: 1em;
}

h1 strong,
h1 em,
h2 strong,
h2 em,
h3 strong,
h3 em,
h4 strong,
h4 em,
h5 strong,
h5 em,
h6 strong,
h6 em {
	font-weight: inherit;
	_font-weight: expression(this.parentNode.currentStyle.fontWeight);
	*font-weight: expression(this.parentNode.currentStyle.fontWeight);
}

/* normal block
--------------------------------------------------------------------*/

p {
	text-align: justify;
	text-justify: distribute;
}

/* anchor
--------------------------------------------------------------------*/

a:link {
	color: #333333;
	text-decoration: none;
}

a:visited {
 color:#333333;
	text-decoration: none;
}

a:hover {
 color:#333333;
	text-decoration:none;
}

a:active {
}

/* table
--------------------------------------------------------------------*/

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* default-rollover
--------------------------------------------------------------------*/

/*a:hover img {
	opacity : 0.2;
	filter: alpha(opacity=20);
}

*/